home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / CPPAWARE.PAK / DBCONTRL.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  885b  |  27 lines

  1. //--------------------------------------------------------
  2. // DBCONTRL.CPP
  3. // Copyrights (C) 1996 Borland International
  4. // All rights reserved.
  5. //--------------------------------------------------------
  6.  
  7. #include <vdbt/dbcontrl.h>
  8.  
  9.  
  10. //--------------------------------------------------------
  11. // Events Response Table
  12. //--------------------------------------------------------
  13. DEFINE_DB_RESPONSE_TABLE1( TDBControl, TVbxControl )
  14. END_RESPONSE_TABLE;
  15.  
  16. TDBControl::TDBControl( TWindow *parent, int id, LPCSTR lpClass, LPCSTR title
  17.                       , int x, int y, int w, int h, TModule *module )
  18.            : TVbxControl( parent, id, "BDT52CTL.VBX", lpClass, title
  19.                         , x, y, w, h, 0, 0, module )
  20. {
  21. }
  22.  
  23. TDBControl::TDBControl( TWindow *parent, int resourceId, TModule *module )
  24.            : TVbxControl( parent, resourceId, module )
  25. {
  26. }
  27.